[USER (data scientist)]: Now, I'd like to categorize players into ranking groups based on their average rank. Can you help me with that? Please generate a DataFrame that calculates the average win/loss ratio for each ranking group and surface type in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import numpy as np
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(grouped_data)

# save data
pickle.dump(grouped_data,open("./pred_result/grouped_data.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Alright, let's categorize players into those ranking groups and calculate the average win/loss ratio for each group and surface type. Here's the code for that: 
'''
import pandas as pd
import numpy as np
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
